home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Scope / Scope Disk #044 (199x)(Scope PD)(US)[WB].zip / Scope Disk #044 (199x)(Scope PD)(US)[WB].adf / writutils / com.doc < prev    next >
Text File  |  1988-12-08  |  2KB  |  98 lines

  1.  
  2.      (c)Copyright 1988, Matthew Dillon, All Rights Reserved
  3.            Freely Distributable for non-profit only
  4.  
  5.  
  6.                      ADDCR
  7.  
  8.                  V1.00, 16 October 1988
  9.  
  10. ADDCR <files>
  11.  
  12.     Each file specified is loaded into ram, CR's added before LF's, and
  13.     written back out under the same name.
  14.  
  15.                       CMP
  16.  
  17.                  V1.00, 16 October 1988
  18.  
  19. CMP file1 file2
  20.  
  21.     The two files must be of the same size.  The files are compared for
  22.     exact equality.  An error message is displayed if the files do not
  23.     compare.  Exit value:
  24.  
  25.         0    compare successful
  26.         5    compare failed
  27.         20    unable to open both files
  28.         30    unable to allocate memory!
  29.  
  30.  
  31.                      FINDIT
  32.  
  33.                  V1.00, 16 October 1988
  34.  
  35. FINDIT [-ddir] <wildcard> <wildcard> ...
  36.  
  37.     Search the specified directories for files matching the
  38.     given wildcard.
  39.  
  40.     If no directories are specified, look for a directory list
  41.     in the ENV: enviroment variable FINDITVOLS, of the form:
  42.  
  43.     dir,dir,dir ...
  44.  
  45.     After setting up such an enviroment variable, FINDIT is as
  46.     simple as 'FINDIT <wildcard>'.  Example:
  47.  
  48.     findit list
  49.     findit l\*    (from a shell)
  50.     findit l*    (from a CLI)
  51.  
  52.     The * and ? wildcards are supported.
  53.  
  54.  
  55.                      LIBS
  56.  
  57.                   V1.00, 16 October 1988
  58.  
  59.  
  60. LIBS    [libname]
  61.  
  62.     With no arguments lists libraries and devices currently in
  63.     memory, their version, and the number of references.
  64.  
  65.     If a library name is given as a reference and that library
  66.     has no references it will be removed.  If the library has
  67.     references the delayed-expunge flag is set and the library
  68.     will be removed when the references fall to 0.
  69.  
  70.     This utility is useful for those of us working on our own
  71.     custom libraries.
  72.  
  73. Example:
  74.  
  75.     libs
  76.     libs dres.library
  77.  
  78.                      REMCR
  79.  
  80.                  V1.00, 16 October 1988
  81.  
  82. REMCR <files>
  83.  
  84.     Each file specified is loaded into ram, CR's removed, and written
  85.     back out under the same name.
  86.  
  87.  
  88.                      SCAT
  89.  
  90.                   V1.00, 16 October 1988
  91.  
  92. SCAT <files>
  93.  
  94.     Like cat, but non-ascii characters are displayed in reverse.
  95.  
  96.  
  97.  
  98.